home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / saverenderedas_ilbm.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  47 lines

  1. /*
  2.  * $VER: SaveRenderedAs_ILBM.ifx.pre 2.5 (11.04.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  * Written by Thomas Krehbiel
  5.  *
  6.  * Save rendered image as ILBM.
  7.  *
  8.  * Inputs:
  9.  *    Word(Arg(1),1) = Sequence number (?)
  10.  *    Word(Arg(1),2) = Total number of frames (N)
  11.  *
  12.  * Returns:
  13.  *    0 if successful, non-zero on failure
  14.  *
  15.  */
  16.  
  17. OPTIONS RESULTS
  18.  
  19. seq = WORD(ARG(1),1)
  20.  
  21. lastpath = GETCLIP('Autofx_SaveRenderAsILBM_Path'||seq)
  22. lastext  = GETCLIP('Autofx_SaveRenderAsILBM_Ext'||seq)
  23.  
  24. IF lastext = "" & lastpath = "" THEN lastext = ".iff"
  25.  
  26. IF lastpath = "" THEN DO
  27.    GetPrefs RendPath
  28.    lastpath = result
  29.    END
  30.  
  31. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  32. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  33. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  34. Gadget.4 = 'TEXT    120 36   1  1 "(** = current frame number)" 1'
  35. Gadget.5 = 'END'
  36.  
  37. NewComplexRequest '"Save Rendered Image As ILBM"' Gadget 360 53
  38. IF rc ~= 0 THEN EXIT rc
  39.  
  40. lastpath = result.1
  41. lastext  = result.3
  42.  
  43. CALL SETCLIP('Autofx_SaveRenderAsILBM_Path'||seq, lastpath)
  44. CALL SETCLIP('Autofx_SaveRenderAsILBM_Ext'||seq, lastext)
  45.  
  46. EXIT
  47.